DataSource for Entity Framework in WPF
C1.LiveLinq.LiveViews Namespace / View<T> Class / GroupJoin<TInner,TKey,TResult> Method
The type of the elements of the view to join with this view.
The type of the keys returned by the key selector functions.
The type of the result elements.
The collection (usually, a view) to join to this view.
A function to extract the join key from each element of this view.
A function to extract the join key from each element of the second view.
A function to create a result view from an element from this view and a collection of matching elements from the second view.

In This Topic
    GroupJoin<TInner,TKey,TResult> Method (View<T>)
    In This Topic
    Correlates the elements of two views based on equality of keys and groups the results.
    Syntax

    Parameters

    inner
    The collection (usually, a view) to join to this view.
    outerKeySelector
    A function to extract the join key from each element of this view.
    innerKeySelector
    A function to extract the join key from each element of the second view.
    resultSelector
    A function to create a result view from an element from this view and a collection of matching elements from the second view.

    Type Parameters

    TInner
    The type of the elements of the view to join with this view.
    TKey
    The type of the keys returned by the key selector functions.
    TResult
    The type of the result elements.

    Return Value

    A view containing elements of type TResult that are obtained by performing a grouped join on two views.
    See Also